home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc2 / wtools.zip / INSTALL.BAT next >
DOS Batch File  |  1992-03-06  |  4KB  |  70 lines

  1. @ECHO OFF
  2.  
  3. REM INFORM USER OF WHAT PROGRAM DOES
  4.  
  5. @ECHO .
  6. @ECHO ┌─────────────────────────────────────────────────────────────────────┐
  7. @ECHO │ WinTools Version 1.0 Install Program  Copyright 1992 David R. Green │
  8. @ECHO │─────────────────────────────────────────────────────────────────────│
  9. @ECHO │                                                                     │
  10. @ECHO │ This is a simple Batch file Install program for WinTools, that will │
  11. @ECHO │ perform the following functions:                                    │
  12. @ECHO │                                                                     │
  13. @ECHO │ 1. Create a directory called WINTOOLS on your C: Drive              │
  14. @ECHO │ 2. Copy all DOC/EXE/WRI files to C:\WINTOOLS                        │
  15. @ECHO │ 3. Copy all PIF files to C:\WINDOWS                                 │
  16. @ECHO │                                                                     │
  17. @ECHO │ THIS PROGRAM REQUIRES ALL WINTOOLS SHAREWARE PROGRAMS TO BE ON A    │
  18. @ECHO │ SINGLE DISK (720k/1.2M/1.44M), AND THAT YOU ARE CURRENTLY ON THAT   │
  19. @ECHO │ DRIVE (MEANING YOU MUST RUN THE INSTALL PROGRAM FROM THE FLOPPY     │
  20. @ECHO │ THAT IT RESIDES ON).  YOU MUST ALREADY HAVE VBRUN100.DLL in WINDOWS!│
  21. @ECHO │                                                                     │
  22. @ECHO │ This Install Program does NOT check to see if a directory called    │
  23. @ECHO │ WINTOOLS already exists before copying to it, nor does it check     │
  24. @ECHO │ if the Windows Directory actually exists on drive C: before trying  │
  25. @ECHO │ to copy to it.  PRESS CTRL+C IF YOU DO NOT WISH TO PROCEED!         │
  26. @ECHO └─────────────────────────────────────────────────────────────────────┘
  27. @ECHO .
  28. PAUSE
  29.  
  30. REM MAKE WINTOOLS DIRECTORY
  31.  
  32. md c:\wintools
  33.  
  34. REM COPY FILES TO WINTOOLS DIRECTORY
  35.  
  36. copy *.doc c:\wintools
  37. copy *.exe c:\wintools
  38. copy *.wri c:\wintools
  39.  
  40. REM COPY FILES TO WINDOWS DIRECTORY
  41.  
  42. copy *.pif c:\windows
  43.  
  44. REM TELL USER ABOUT PROGRAM MANAGER GROUP
  45.  
  46. @ECHO .
  47. @ECHO ┌─────────────────────────────────────────────────────────────────────┐
  48. @ECHO │ WinTools Version 1.0 Install Program  Copyright 1992 David R. Green │
  49. @ECHO │─────────────────────────────────────────────────────────────────────│
  50. @ECHO │                                                                     │
  51. @ECHO │ Install has completed.  If you encountered no error messages during │
  52. @ECHO │ the install, all should be OK.                                      │
  53. @ECHO │                                                                     │
  54. @ECHO │ You must now run Windows, and add a Group to Program Manager called │
  55. @ECHO │ WinTools.  Then add all WinTools utilities to that Group.           │
  56. @ECHO │                                                                     │
  57. @ECHO │ Consult your Windows User's Manual for more information on Program  │
  58. @ECHO │ Manager, Creating Groups, and adding New Items to Groups.           │
  59. @ECHO │                                                                     │
  60. @ECHO │ WinTools requires the Visual BASIC VBRUN100.DLL which is available  │
  61. @ECHO │ on most BBSs including CompuServe.  Two WinTools programs also      │
  62. @ECHO │ require PKZIP, PKUNZIP, and LHARC.  Be sure to read the Manuals.    │
  63. @ECHO │                                                                     │
  64. @ECHO │ Thank you for supporting Shareware from David R. Green.             │
  65. @ECHO │ Please Don't abuse, Register if you use.                            │
  66. @ECHO │                                                                     │
  67. @ECHO └─────────────────────────────────────────────────────────────────────┘
  68. @ECHO .
  69.  
  70.